Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • Group tables with eststo, and**esttab

    Dear All,


    I am trying to create tables for panel regrreassion based on groups. .I have general model , called GM), and then subdivided in four groups GroupA , GroupB, GroupcC, GroupD . For the general model and for and for each group I run three(3) types of regression using eststo, and esttab. I am looking for your help in the following

    1) I would like to add title on each of the regression, by thjier group, if they belong to the general model or by their group

    In a nutchel, it should look something like this, ideally with a space among the groups


    General Title

    General Model. GroupA GroupA B. GroupC. GroupD
    model 1 model2 model3 model 1 model2 model3 model 1 model2 model3 model 1 model2 model3 model 1 model2 model3



    I use the following code for the first six regressions

    eststo: regression1
    est store mod1

    eststo: regression2

    est store mod2

    eststo: regression3

    est store mod3

    eststo: regression4

    est store mod4
    eststo: regression5

    est store mod5

    eststo: regression6

    est store mod6


    esttab mod1 mod2 mod3 mod4 mod5 mod6


    esttab mod1 mod2 mod3 mod4 mod5 mod6 using output.rtf, se scalar(F) r2 label nonumber title( "Table 1a Full model estimation.") mtitle("NAME1" "NAME2" "NAME3" "NAME4" "NAME5" "NAME6") addnote("Depended variable is NAME OF Y)"
    How can I create groups and titles?


    and

    2) Given the large number of my regressors, I would like to report only statistically significant results, taking out no significant results. How is that done?

Working...
X